diff options
| author | zephex-alt <[email protected]> | 2024-04-26 18:56:04 +0000 |
|---|---|---|
| committer | zephex-alt <[email protected]> | 2024-04-26 18:56:04 +0000 |
| commit | adc2555489011934b209ddcd42668d1d6727db3e (patch) | |
| tree | fa5dc2f9793cf355278fd6e2bb1e0864579a8d73 /src/app/manga/[title]/[id]/page.jsx | |
| parent | Merge branch 'real-zephex:master' into master (diff) | |
| download | dramalama-adc2555489011934b209ddcd42668d1d6727db3e.tar.xz dramalama-adc2555489011934b209ddcd42668d1d6727db3e.zip | |
removed edge runtime
Diffstat (limited to 'src/app/manga/[title]/[id]/page.jsx')
| -rw-r--r-- | src/app/manga/[title]/[id]/page.jsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/app/manga/[title]/[id]/page.jsx b/src/app/manga/[title]/[id]/page.jsx index 2c1fcc8..5aa807d 100644 --- a/src/app/manga/[title]/[id]/page.jsx +++ b/src/app/manga/[title]/[id]/page.jsx @@ -5,8 +5,6 @@ import { redirect } from "next/navigation"; import { FaStar } from "react-icons/fa";
import { PreFetchChaterLinks } from "../../cacher";
-export const runtime = 'edge';
-
export default async function MangaInfo({ params }) {
const id = params.id;
const data = await getMangaInfo(id);
|